home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / tpwprog3.arj / IDENTS.PAS next >
Encoding:
Pascal/Delphi Source File  |  1992-07-02  |  1.8 KB  |  86 lines

  1. {******************************************************************}
  2. {                                                                  }
  3. {     Mancala                                                      }
  4. {     Turbo Pascal for Windows                                     }
  5. {     Copyright (c) 1991 by Swan Software. All rights reserved.    }
  6. {                                                                  }
  7. {******************************************************************}
  8.  
  9. { idents.pas -- Resource identifiers for Mancala and Resource Workshop }
  10.  
  11. unit idents;
  12.  
  13. interface
  14.  
  15. const
  16.  
  17.  
  18. {- Various resource IDs }
  19.  
  20.     id_Accelerator    =    100;
  21.     id_Menu    =    1;
  22.     id_Icon    =    100;
  23.     id_About    =    100;
  24.     id_Options    =    101;
  25.     id_Instruct    =    102;
  26.  
  27.  
  28. {- Menu command IDs }
  29.  
  30.     cm_GameNew    =    101;
  31.     cm_GameExit    =    102;
  32.     cm_EditOptions    =    201;
  33.     cm_EditLevel1    =    202;
  34.     cm_EditLevel2    =    203;
  35.     cm_EditLevel3    =    204;
  36.     cm_EditLevel4    =    205;
  37.     cm_EditLevel5    =    206;
  38.     cm_EditLevel6    =    207;
  39.     cm_EditLevel7    =    208;
  40.     cm_ActionReplay    =    301;
  41.     cm_ActionPass    =    302;
  42.     cm_ActionSwitch    =    303;
  43.     cm_HelpAbout    =    403;
  44.     cm_HelpIndex    =    401;
  45.     cm_HelpUsing    =    402;
  46.     cm_Move1    =    901;
  47.     cm_Move2    =    902;
  48.     cm_Move3    =    903;
  49.     cm_Move4    =    904;
  50.     cm_Move5    =    905;
  51.     cm_Move6    =    906;
  52.     cm_Move7    =    907;
  53.     cm_Move8    =    908;
  54.     cm_Move9    =    909;
  55.  
  56.  
  57. {- Options dialog control ID }
  58.  
  59.     op_PebblesPerCup    =    101;
  60.  
  61.  
  62. {- String table resource IDs }
  63.  
  64.     Its_Your_Move    =    1;
  65.     Its_My_Move    =    2;
  66.     You_Go_Again    =    3;
  67.     I_Go_Again    =    4;
  68.     Capture    =    5;
  69.     I_Win    =    6;
  70.     You_Win    =    7;
  71.     Im_out    =    8;
  72.     Youre_Out    =    9;
  73.     Instant_Replay    =    10;
  74.     Pebbles_To_Win    =    11;
  75.  
  76.  
  77. implementation
  78.  
  79. end.
  80.  
  81.  
  82. { ----------------------------------------------------------------
  83.   Copyright (c) 1991 by Swan Software. All rights reserved.
  84.   Revision 1.00    Date: 8/21/1991
  85.   ---------------------------------------------------------------- }
  86.